84e22e9e468ab4f7b98b1b3153ff51d98543c2d1,Frameworks/BusinessLogic/ERAttachment/Sources/er/attachment/components/ERAttachmentFlexibleEditor.java,ERAttachmentFlexibleEditor,relationshipKey,#,396

Before Change


	 * @return the relationshipKey
	 */
	public String relationshipKey() {
		if (_relationshipKey == null) {
			_relationshipKey = stringValueForBinding(Keys.relationshipKey);
		}
		return _relationshipKey;
	}

	/**

After Change


	 * @return the relationshipKey
	 */
	public String relationshipKey() {
		return stringValueForBinding(Keys.relationshipKey);
	}
	
	/**